crypto/tls.serverHandshakeStateTLS13.hello (field)

21 uses

	crypto/tls (current package)
		handshake_server_tls13.go#L49: 	hello           *serverHelloMsg
		handshake_server_tls13.go#L110: 	hs.hello = new(serverHelloMsg)
		handshake_server_tls13.go#L114: 	hs.hello.vers = VersionTLS12
		handshake_server_tls13.go#L115: 	hs.hello.supportedVersion = c.vers
		handshake_server_tls13.go#L149: 	hs.hello.random = make([]byte, 32)
		handshake_server_tls13.go#L150: 	if _, err := io.ReadFull(c.config.rand(), hs.hello.random); err != nil {
		handshake_server_tls13.go#L176: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server_tls13.go#L177: 	hs.hello.compressionMethod = compressionNone
		handshake_server_tls13.go#L198: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server_tls13.go#L254: 	hs.sharedKey, hs.hello.serverShare, err = ke.serverSharedSecret(c.config.rand(), clientKeyShare.data)
		handshake_server_tls13.go#L430: 		hs.hello.selectedIdentityPresent = true
		handshake_server_tls13.go#L431: 		hs.hello.selectedIdentity = uint16(i)
		handshake_server_tls13.go#L544: 		vers:              hs.hello.vers,
		handshake_server_tls13.go#L546: 		sessionId:         hs.hello.sessionId,
		handshake_server_tls13.go#L547: 		cipherSuite:       hs.hello.cipherSuite,
		handshake_server_tls13.go#L548: 		compressionMethod: hs.hello.compressionMethod,
		handshake_server_tls13.go#L549: 		supportedVersion:  hs.hello.supportedVersion,
		handshake_server_tls13.go#L717: 		copy(hs.hello.random[32-8:], make([]byte, 8))
		handshake_server_tls13.go#L720: 		if err := transcriptMsg(hs.hello, echTranscript); err != nil {
		handshake_server_tls13.go#L731: 		copy(hs.hello.random[32-8:], acceptConfirmation)
		handshake_server_tls13.go#L738: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {